home *** CD-ROM | disk | FTP | other *** search
/ Dino Crisis Digital Press Kit / Dino Crisis Digital Press Kit.iso / mac / f / 00147_Script_147 < prev    next >
Text File  |  1999-09-02  |  431b  |  18 lines

  1. on mousedown
  2.   put the spritenum of sprite the clickon into x
  3.   repeat with n = 60 to 74
  4.     puppetsprite n, false
  5.   end repeat
  6.   repeat with m = 80 to 94
  7.     set the visible of sprite m to false
  8.   end repeat
  9.   
  10.   puppetsprite x, true
  11.   set the blend of sprite x to 30
  12.   set z = x + 1
  13.   puppetsprite z, true
  14.   set the blend of sprite z to 30
  15.   set k = x + 20
  16.   set the visible of sprite k to true
  17.   updatestage
  18. end